home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / HELPDOS.ZIP / MORE.HLP < prev    next >
Text File  |  1985-09-10  |  790b  |  27 lines

  1. ------------------------  MORE - External DOS Command  -------------------------
  2.  
  3. MORE halts display scrolling when the screen is full.
  4.  
  5. FORMAT:   MORE
  6.  
  7. REMARKS:
  8.  
  9.    MORE is used with "piping" or "redirection" to achieve its function.  The
  10.    message "--More--" appears on the bottom line when the screen is full, and
  11.    the system is halted until any key is pressed.
  12.  
  13. NOTE:  In DOS Version 3 you may preface MORE with the drive letter and directory
  14.    path, [d:][path], where the command file can be found.
  15.  
  16. EXAMPLES:
  17.  
  18. Display the contents of the current directory on the current drive one full
  19. screen at a time:
  20.  
  21.           DIR | MORE
  22.  
  23.  
  24. Display the contents of MYFILE.TXT one full screen at a time:
  25.  
  26.           MORE < MYFILE.TXT     or     TYPE MYFILE.TXT | MORE
  27.